home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / PEBuilder / pebuilder3110a.exe / {app} / plugin / StarWind / StarWind_Install.cmd < prev    next >
OS/2 REXX Batch file  |  2005-01-17  |  788b  |  39 lines

  1. @echo off
  2. rem $Id: StarWind_Install.cmd,v 1.2 2005/01/16 23:21:11 valery Exp $
  3.  
  4. setlocal
  5. echo StarWind: Installing and starting the iSCSI server...
  6. echo.
  7.  
  8. echo Check if TCP/IP stack is installed...
  9. bartpe.exe -c c -q ms_tcpip
  10. if not "%errorlevel%" == "0" (
  11.     echo.
  12.     echo TCP/IP stack is not installed!
  13.     echo Please load network support before this script!
  14.     goto _err)
  15.  
  16. echo.
  17.  
  18. set tmpdir=%temp%\StarWind
  19. mkdir %tmpdir%
  20.               
  21. %systemdrive%
  22. cd \Programs\RDS\StarWind
  23.  
  24. rem copy StarWind.conf %tmpdir%\
  25. rem StarWindService.exe --install -o -ld%tmpdir%\ -c%tmpdir%\StarWind.conf
  26.  
  27. StarWindService.exe --install -o -ld%tmpdir%\
  28.  
  29. StarWindService.exe --start
  30.  
  31. goto _end
  32.  
  33. :_err
  34. echo.
  35. rem set errorlevel to 1 by (mis)using color
  36. color 00 
  37. :_end
  38. endlocal
  39.